Id int64 1.68k 75.6M | PostTypeId int64 1 2 | AcceptedAnswerId int64 1.7k 75.6M ⌀ | ParentId int64 1.68k 75.6M ⌀ | Score int64 -60 3.16k | ViewCount int64 8 2.68M ⌀ | Body stringlengths 1 41.1k | Title stringlengths 14 150 ⌀ | ContentLicense stringclasses 3
values | FavoriteCount int64 0 1 ⌀ | CreationDate stringlengths 23 23 | LastActivityDate stringlengths 23 23 | LastEditDate stringlengths 23 23 ⌀ | LastEditorUserId int64 -1 21.3M ⌀ | OwnerUserId int64 1 21.3M ⌀ | Tags list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,679 | 1 | 1,704 | null | 16 | 10,666 | I'm writing an app to help facilitate some research, and part of this involves doing some statistical calculations. Right now, the researchers are using a program called [SPSS](http://en.wikipedia.org/wiki/Spss). Part of the output that they care about looks like this:

I'm l... | Plugin for Visual Studio to Mimic Eclipse's "Open Type" or "Open Resource" Keyboard Access | CC BY-SA 3.0 | null | 2008-08-06T03:44:41.197 | 2015-08-20T22:14:18.063 | 2012-04-01T10:02:38.760 | 1,219,121 | 291 | [
"visual-studio",
"plugins"
] |
3,725 | 1 | 3,776 | null | 18 | 4,408 | I'm writing an application that is basically just a preferences dialog, much like the tree-view preferences dialog that Visual Studio itself uses. The function of the application is simply a pass-through for data from a serial device to a file. It performs many, many transformations on the data before writing it to the... | How to create a tree-view preferences dialog type of interface in C#? | CC BY-SA 3.0 | 0 | 2008-08-06T17:22:27.350 | 2016-01-17T12:49:42.543 | 2013-12-28T06:19:48.327 | 2,780,033 | 551 | [
"c#",
"user-interface"
] |
4,225 | 1 | 4,281 | null | 17 | 1,356 | Is there a trivial, or at least moderately straight-forward way to generate territory maps (e.g. Risk)?
I have looked in the past and the best I could find were vague references to Voronoi diagrams. An example of a Voronoi diagram is this:
.
These hold promise, but I gues... | Territory Map Generation | CC BY-SA 4.0 | null | 2008-08-07T00:48:04.953 | 2018-12-27T21:50:55.553 | 2018-12-27T21:50:55.553 | 4,751,173 | 364 | [
"language-agnostic",
"maps",
"voronoi"
] |
7,477 | 1 | 7,523 | null | 129 | 160,521 | I'm currently working on an internal sales application for the company I work for, and I've got a form that allows the user to change the delivery address.
Now I think it would look much nicer, if the textarea I'm using for the main address details would just take up the area of the text in it, and automatically resiz... | How to autosize a textarea using Prototype? | CC BY-SA 4.0 | 0 | 2008-08-11T01:43:13.493 | 2020-03-09T14:10:06.593 | 2019-01-03T06:54:14.567 | 10,757,987 | 841 | [
"javascript",
"html",
"css",
"textarea",
"prototypejs"
] |
8,472 | 1 | 8,637 | null | 317 | 82,711 | It looks like we'll be adding [CAPTCHA](http://en.wikipedia.org/wiki/Captcha) support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things here!
We'll be using a JavaScript (jQuery) CAPTCHA as a first line of defense:
[... | Practical non-image based CAPTCHA approaches? | CC BY-SA 3.0 | 0 | 2008-08-12T04:59:35.017 | 2012-06-29T13:37:52.210 | 2012-04-01T09:23:31.653 | 1,219,121 | 1 | [
"security",
"language-agnostic",
"captcha"
] |
9,805 | 1 | 9,851 | null | 8 | 5,816 | I am currently writing a small calendar in ASP.Net C#. Currently to produce the rows of the weeks I do the following for loop:
```
var iWeeks = 6;
for (int w = 0; w < iWeeks; w++) {
```
This works fine, however, some month will only have 5 weeks and in some rare cases, 4.
How can I calculate the number of rows that... | Calculate DateTime Weeks into Rows | CC BY-SA 3.0 | 0 | 2008-08-13T13:38:56.043 | 2021-01-27T03:13:54.237 | 2016-12-21T04:38:26.107 | 256,196 | 383 | [
"c#",
"asp.net"
] |
11,665 | 1 | 12,310 | null | 2 | 5,982 | Here is the sample code for my accordion:
```
<mx:Accordion x="15" y="15" width="230" height="599" styleName="myAccordion">
<mx:Canvas id="pnlSpotlight" label="SPOTLIGHT" height="100%" width="100%" horizontalScrollPolicy="off">
<mx:VBox width="100%" height="80%" paddingTop="2" paddingBottom="1" verticalGa... | How do I restyle an Adobe Flex Accordion to include a button in each canvas header? | CC BY-SA 4.0 | null | 2008-08-14T20:25:07.840 | 2018-12-27T22:02:20.540 | 2018-12-27T22:02:20.540 | 4,751,173 | 26 | [
"apache-flex",
"actionscript-3"
] |
12,268 | 1 | 12,274 | null | 2 | 1,852 | Lutz Roeder's Reflector, that is.
Its obfuscated.

I still don't understand this. Can somebody please explain?
| Have you ever reflected Reflector? | CC BY-SA 3.0 | 0 | 2008-08-15T14:01:15.030 | 2012-04-01T09:58:02.790 | 2012-04-01T09:58:02.790 | 1,219,121 | null | [
".net",
"reflector"
] |
13,938 | 1 | 13,969 | null | 4 | 1,528 | 
I need some advice as to how I easily can separate test runs for unit tests and integration test in Visual Studio. Often, or always, I structure the solution as presented in the above picture: separate projects for unit tests and integration tests.... | How do I run (unit) tests in different folders/projects separately in Visual Studio? | CC BY-SA 3.0 | 0 | 2008-08-17T21:21:07.670 | 2012-04-01T10:02:32.397 | 2012-04-01T10:02:32.397 | 1,219,121 | 446 | [
"visual-studio",
"unit-testing",
"configuration",
"vsx",
"extensibility"
] |
18,614 | 1 | null | null | 4 | 744 | What is the the best way to write a form to submit some data in ASP.NET MVC? Is it as [Scott Guthrie](http://en.wikipedia.org/wiki/Scott_Guthrie) demonstrates here? Are there better approaches? Perhaps with less using of strings?

| What is the best way to write a form in ASP.NET MVC? | CC BY-SA 3.0 | 0 | 2008-08-20T19:16:01.060 | 2019-04-01T20:07:42.353 | 2019-04-01T20:07:42.353 | 100,297 | 230 | [
"asp.net-mvc",
"forms"
] |
21,697 | 1 | 22,043 | null | 17 | 5,757 | I'm currently writing an ASP.Net app from the UI down. I'm implementing an MVP architecture because I'm sick of Winforms and wanted something that had a better separation of concerns.
So with MVP, the Presenter handles events raised by the View. Here's some code that I have in place to deal with the creation of users:... | How Do You Communicate Service Layer Messages/Errors to Higher Layers Using MVP? | CC BY-SA 3.0 | 0 | 2008-08-22T03:12:59.517 | 2012-03-29T19:04:40.937 | 2012-03-29T19:04:40.937 | 122,607 | 1,894 | [
"c#",
"asp.net",
"exception",
"mvp",
"n-tier-architecture"
] |
26,145 | 1 | 40,209 | null | 3 | 2,249 | I'm making a simple extra java app launcher for Eclipse 3.2 (JBuilder 2007-8) for internal use.
So I looked up all the documentations related, including this one [The Launching Framework from eclipse.org](http://www.eclipse.org/articles/Article-Launch-Framework/launch.html) and have managed to make everything else wor... | Cannot add a launch shortcut (Eclipse Plug-in) | CC BY-SA 3.0 | null | 2008-08-25T14:45:15.910 | 2015-11-20T11:38:15.483 | 2015-11-20T11:38:15.483 | 3,218,692 | 2,710 | [
"eclipse",
"plugins"
] |
26,670 | 1 | 30,688 | null | 1 | 1,101 | I'm creating PDFs on-demand with ColdFusion's [CFDocument](http://cfquickdocs.com/cf8/?getDoc=cfdocument) tag, like so:
```
<cfdocument format="PDF" filename="#attributes.fileName#" overwrite="true">
<cfdocumentitem type="footer">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
... | Why is my PDF footer text invisible? | CC BY-SA 3.0 | null | 2008-08-25T19:14:07.280 | 2012-04-01T09:21:43.570 | 2012-04-01T09:21:43.570 | 1,219,121 | 751 | [
"pdf",
"coldfusion"
] |
27,655 | 1 | 27,661 | null | 1 | 630 | This is starting to vex me. I recently decided to clear out my FTP, and stumbled across an old Wordpress install I forgot I had (oh yes, very security conscious me). Anyway, for some reason deleting the directory failed so I investigated to see what was causing the blockage and I've narrowed it down to a file in wp-con... | Cannot delete, a file with that name may already exist | CC BY-SA 4.0 | null | 2008-08-26T09:50:51.070 | 2018-12-27T22:22:37.630 | 2018-12-27T22:22:37.630 | 4,751,173 | 2,025 | [
"file",
"ftp",
"symlink"
] |
28,716 | 1 | 28,735 | null | 59 | 10,890 | I'm trying to improve performance under high load and would like to implement opcode caching. Which of the following should I use?
- [Installation Guide](http://www.howtoforge.com/apc-php5-apache2-debian-etch)- [Installation Guide](http://www.howtoforge.com/eaccelerator_php5_debian_etch)- [Installation Guide](http://w... | Which PHP opcode cacher should I use to improve performance? | CC BY-SA 3.0 | 0 | 2008-08-26T17:50:53.303 | 2015-06-20T21:50:57.320 | 2012-04-01T08:56:25.747 | 1,219,121 | 2,633 | [
"php",
"performance",
"caching"
] |
29,244 | 1 | 29,439 | null | 8 | 23,082 | I have the following HTML (note the CSS making the background black and text white)
```
<html>
<select id="opts" style="background-color: black; color: white;">
<option>first</option>
<option>second</option>
</select>
</html>
```
Safari is smart enough to make the small triangle that appears to the righ... | HTML Select Tag with black background - dropdown triangle is invisible in Firefox 3 | CC BY-SA 3.0 | null | 2008-08-27T00:23:02.783 | 2017-02-23T10:32:31.573 | 2014-07-08T11:27:57.347 | 3,326,275 | 234 | [
"html",
"css",
"firefox",
"drop-down-menu",
"html-select"
] |
30,160 | 1 | 30,402 | null | 5 | 1,419 | I'm giving a presentation to a Java User's Group on Groovy and I'm going to be doing some coding during the presentation to show some side-by-side Java/Groovy. I really like the GroovyConsole as it's simple and I can resize the text easily.
I'm wondering if there is anything similar for Java? I know I could just u... | Is there a Java Console/Editor similar to the GroovyConsole? | CC BY-SA 3.0 | null | 2008-08-27T13:50:26.090 | 2012-05-04T00:58:15.777 | 2012-05-04T00:58:15.777 | 127,036 | 3,030 | [
"java",
"editor"
] |
31,097 | 1 | 31,860 | null | 11 | 1,090 | Visual Basic code does not render correctly with [prettify.js](https://code.google.com/archive/p/google-code-prettify) from Google.
on Stack Overflow:
```
Partial Public Class WebForm1
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
... | Is there a lang-vb or lang-basic option for prettify.js from Google? | CC BY-SA 4.0 | 0 | 2008-08-27T20:05:30.883 | 2021-11-14T11:54:06.860 | 2021-11-14T11:54:06.860 | 4,751,173 | 83 | [
"javascript",
"vb.net",
"prettify"
] |
32,494 | 1 | 42,043 | null | 68 | 37,036 | I coded a Mancala game in Java for a college class this past spring, and I used the [Eclipse](https://www.eclipse.org) IDE to write it. One of the great (and fairly simple) visual aids in Eclipse is if you select a particular token, say a declared variable, then the IDE will automatically highlight all other reference... | Visual Studio identical token highlighting | CC BY-SA 3.0 | 0 | 2008-08-28T14:56:55.810 | 2018-03-05T12:20:16.853 | 2017-08-09T04:11:16.830 | 1,033,581 | 418 | [
"visual-studio",
"visual-studio-2008",
"visual-studio-2005"
] |
33,263 | 1 | null | null | 3 | 2,837 | I'm using the [ASP.NET Login Controls](http://msdn.microsoft.com/en-us/library/ms178329.aspx) and [Forms Authentication](http://msdn.microsoft.com/en-us/library/aa480476.aspx) for membership/credentials for an ASP.NET web application.
I've got two roles:
- -
I want pages to be viewable by four different groups:
- ... | How do I best handle role based permissions using Forms Authentication on my ASP.NET web application? | CC BY-SA 3.0 | null | 2008-08-28T20:05:19.847 | 2012-04-01T20:43:32.583 | 2017-05-23T12:19:34.457 | -1 | 83 | [
"asp.net",
"forms-authentication"
] |
35,123 | 1 | 159,454 | null | 13 | 11,859 | What did I do wrong?
Here is an excerpt from my code:
```
public void createPartControl(Composite parent) {
parent.setLayout(new FillLayout());
ScrolledComposite scrollBox = new ScrolledComposite(parent, SWT.V_SCROLL);
scrollBox.setExpandHorizontal(true);
mParent = new Composite(scrollBox, SWT.NONE);
scroll... | Prevent SWT ScrolledComposite from eating part of it's children | CC BY-SA 3.0 | 0 | 2008-08-29T19:36:33.920 | 2017-11-23T19:53:26.360 | 2017-11-22T12:03:56.590 | 452,775 | 3,657 | [
"java",
"eclipse",
"swt",
"rcp"
] |
37,103 | 1 | 37,131 | null | 88 | 240,573 | I have a container div with a fixed `width` and `height`, with `overflow: hidden`.
I want a horizontal row of float: left divs within this container. Divs which are floated left will naturally push onto the 'line' below after they read the right bound of their parent. This will happen even if the `height` of the parent... | CSS - Make divs align horizontally | CC BY-SA 4.0 | 0 | 2008-08-31T21:05:41.830 | 2021-07-10T22:02:48.067 | 2021-07-10T22:02:48.067 | 446,106 | 1,349,865 | [
"html",
"css",
"alignment"
] |
37,317 | 1 | 37,336 | null | 7 | 12,264 | I'm working on a windows forms application (C#) where a user is entering data in a form. At any point while editing the data in the form the user can click one of the buttons on the form to perform certain actions. By default the focus goes to the clicked button so the user has to click back on to the control they wa... | How do you return the focus to the last used control after clicking a button in a winform app? | CC BY-SA 2.5 | 0 | 2008-09-01T00:48:03.637 | 2014-06-18T19:14:17.867 | 2017-02-08T14:07:42.863 | -1 | 3,452 | [
"c#",
".net",
"winforms"
] |
37,783 | 1 | 83,332 | null | 2 | 1,557 | I am creating an application for a Windows Mobile computer. The catch is that the device ([Motorola MC17](http://www.motorola.com/business/v/index.jsp?vgnextoid=d4397b103d175110VgnVCM1000008406b00aRCRD)) does not have a touch screen or universal keys - there are only six programmable hardware keys. [Fitt's law](http://... | Are there any guidelines for designing user interface for mobile devices? | CC BY-SA 4.0 | 0 | 2008-09-01T11:33:31.120 | 2018-12-27T22:23:26.857 | 2018-12-27T22:23:26.857 | 4,751,173 | 3,205 | [
"user-interface",
"windows-mobile",
"usability"
] |
41,198 | 1 | 41,235 | null | 24 | 26,147 | How can I get an image to stretch the height of a `DIV` class?
Currently it looks like this:

However, I would like the `DIV` to be stretched so the `image` fits properly, but I do not want to resize the `image.
Here is the CSS for the `DIV` (the grey box):
```
.product1 {
... | Getting image to stretch a div | CC BY-SA 4.0 | 0 | 2008-09-03T05:05:37.777 | 2020-02-26T13:49:50.797 | 2020-02-26T13:49:50.797 | 11,393,381 | 2,592 | [
"css",
"image"
] |
47,817 | 1 | 604,928 | null | 24 | 48,270 | Html Textarea elements only wrap when they reach a space or tab character. This is fine, until the user types a looooooooooooooooooooooong enough word. I'm looking for a way to strictly enforce line breaks (eg.: even if it results in "loooooooooooo \n ooooooooooong").

... | Most elegant way to force a TEXTAREA element to line-wrap, *regardless* of whitespace | CC BY-SA 3.0 | 0 | 2008-09-06T20:36:05.250 | 2017-10-25T18:38:09.720 | 2015-06-19T19:32:00.623 | 1,159,643 | 4,939 | [
"javascript",
"html",
"css",
"text"
] |
48,288 | 1 | 48,318 | null | 10 | 4,984 | I've been trying to understand [Process.MainWindowHandle](http://msdn.microsoft.com/en-gb/library/system.diagnostics.process.mainwindowhandle.aspx).
According to MSDN; "The main window is the window that is created when the process is started. After initialization, other windows may be opened, including the Modal and ... | Unexpected behaviour of Process.MainWindowHandle | CC BY-SA 4.0 | 0 | 2008-09-07T10:14:23.037 | 2018-12-28T07:40:47.750 | 2018-12-28T07:40:47.750 | 4,751,173 | 4,200 | [
"c#",
".net",
"msdn"
] |
49,511 | 1 | 49,523 | null | 7 | 1,371 | I have played with the idea of using a wiki (MediaWiki) to centralize all project information for a development project. This was done using extensions that pull information from SVN (using [SVNKit](http://svnkit.com/)) and by linking to Bugzilla to extract work assigned to a developer or work remaining for a release.... | Using a wiki as a central development project repository | CC BY-SA 3.0 | 0 | 2008-09-08T11:32:49.517 | 2012-04-02T08:40:41.757 | 2012-04-02T08:32:45.380 | 1,219,121 | 2,939 | [
"svn",
"integration",
"wiki",
"projects",
"bugzilla"
] |
51,687 | 1 | 54,341 | null | 4 | 2,321 | Has anyone implemented Lightbox style background dimming on a modal dialog box in a MFC/non .net app.
I think the procedure would have to be something like:
steps:
1. Get dialog parent HWND or CWnd*
2. Get the rect of the parent window and draw an overlay with a translucency over that window
3. allow the dialog to d... | Lightbox style dialogs in MFC App | CC BY-SA 2.5 | null | 2008-09-09T11:53:23.360 | 2008-09-11T11:07:58.897 | 2017-02-08T14:07:47.180 | -1 | 379 | [
"c++",
"user-interface",
"mfc"
] |
52,326 | 1 | 52,332 | null | 3 | 6,408 | Is it possible to validate an xml file against its associated schema using Visual Studio 2005 IDE?
I could only see options to create a schema based on the current file, or show the XSLT output

| How to validate an XML file against a schema using Visual Studio 2005 | CC BY-SA 3.0 | null | 2008-09-09T16:45:06.810 | 2013-02-07T11:13:50.310 | 2013-02-07T11:13:50.310 | 8,446 | 5,182 | [
"xml",
"visual-studio",
"xslt",
"visual-studio-2005"
] |
56,118 | 1 | 57,362 | null | 7 | 8,920 | I am trying to write a formula in ActionScript 3 that will give me var "z" (please see image below) in degrees, which I will then convert to radians.
I will already know the value of vars "x" and "y". Using trigonometry, how can I calculate the length of the hypotenuse and therefore the variable angle of var z? A sol... | Triangle Trigonometry (ActionScript 3) | CC BY-SA 3.0 | 0 | 2008-09-11T09:22:45.187 | 2012-03-29T23:54:15.667 | 2012-03-29T23:54:15.667 | 1,219,121 | 192 | [
"actionscript-3",
"trigonometry",
"hypotenuse"
] |
57,712 | 1 | 57,738 | null | 25 | 21,201 | What is the best way to get hosting of an ASP.NET MVC application to work on IIS 5 (6 or 7). When I tried to publish my ASP.NET MVC application, all I seemed to get is 404 errors. I've done a bit of googleing and have found a couple of solutions, but neither seem super elegant, and I worry if they will be unusable once... | ASP.NET MVC and IIS 5 | CC BY-SA 3.0 | 0 | 2008-09-11T21:30:50.740 | 2016-08-07T16:38:53.487 | 2016-08-07T16:38:53.487 | 4,433,386 | 230 | [
"asp.net-mvc",
"iis",
"shared-hosting"
] |
58,317 | 1 | 58,388 | null | 6 | 4,994 | My site has a drop-down menu built in CSS and JavaScript that drops down over a Flash animation. In IE (6&7) the drop-down menus drop over the Flash animation, however, in Firefox (2&3) the menus appear underneath the Flash animation. Is there any way to get this dynamic menu to flow OVER the Flash in Firefox?
![alt... | CSS / JavaScript Navigation Menu on top of Flash in Firefox | CC BY-SA 3.0 | 0 | 2008-09-12T04:47:42.670 | 2017-06-25T09:53:11.237 | 2017-06-25T09:53:11.237 | 7,750,640 | 6,050 | [
"javascript",
"css",
"flash",
"navigation"
] |
59,309 | 1 | 27,663,253 | null | 172 | 169,307 | What is the best way to vertically center the content of a div when the height of the content is variable. In my particular case, the height of the container div is fixed, but it would be great if there were a solution that would work in cases where the container has a variable height as well. Also, I would love a sol... | How to vertically center content with variable height within a div? | CC BY-SA 2.5 | 0 | 2008-09-12T15:29:55.000 | 2020-05-20T21:42:22.477 | 2017-12-12T08:32:48.267 | 1,654,984 | 5,651 | [
"css",
"vertical-alignment"
] |
60,558 | 1 | null | null | 3 | 828 | I need to do some emulation of some old DOS or mainframe terminals in Flex. Something like the image below for example.

The different coloured text is easy enough, but the ability to do different background colours, such as the yellow background is beyond the capabilit... | Terminal emulation in Flex | CC BY-SA 4.0 | 0 | 2008-09-13T14:16:35.027 | 2018-12-29T00:39:02.510 | 2018-12-29T00:39:02.510 | 4,751,173 | 6,277 | [
"apache-flex"
] |
66,720 | 1 | null | null | 45 | 30,212 | I'm looking for a tool that will render a RDF graph in a reasonably useful graphic format. The primary purpose of the graphic format being inclusion into a PowerPoint slide or printing on a large plotter for management review.
I am currently using TopBraid Composer which does a reasonably well at visualizing a single... | Are there any tools to visualize a RDF graph? (please include a screenshot) | CC BY-SA 4.0 | 0 | 2008-09-15T20:40:30.593 | 2019-02-18T20:28:47.960 | 2018-12-29T19:01:50.330 | 4,751,173 | 3,957 | [
"rdf",
"semantics",
"semantic-web",
"owl",
"ontology"
] |
67,665 | 1 | 67,667 | null | 51 | 37,913 | I recently came across an IE7 only bug that I thought I'd share so when I come to this site 6 months from now to figure out the same thing, I'll have it on hand.
I believe the easiest way to recreate this bug would be the following html in a page with a declared doctype (it works correctly in "quirks mode" / no-docty... | IE7 CSS Scrolling Div Bug | CC BY-SA 3.0 | 0 | 2008-09-15T22:36:00.737 | 2013-12-13T21:50:43.167 | 2013-12-13T21:50:43.167 | 3,617 | 3,617 | [
"html",
"css",
"internet-explorer-7"
] |
76,002 | 1 | 76,030 | null | 7 | 4,314 | My understanding of the Git pack file format is something like:

Where the table is 32-bits wide, and the first three 32-bit words are the pack file header. The last row of 32 bits are... | Git pack file entry format | CC BY-SA 2.5 | 0 | 2008-09-16T19:27:31.277 | 2017-06-16T10:19:27.440 | 2017-02-08T14:07:52.673 | -1 | 3,279 | [
"git",
"file-format"
] |
76,553 | 1 | null | null | 2 | 3,136 | I want to add an item into the Desktop context menu (the menu you see when you right-click on an empty space on the Windows Desktop).
Something like Catalyst Control Center in this screenshot:

I know how to add items to f... | Adding item to the Desktop context menu in Windows | CC BY-SA 2.5 | 0 | 2008-09-16T20:23:17.897 | 2008-09-17T16:08:45.037 | 2017-02-08T14:07:53.007 | -1 | 2,239 | [
"windows",
"user-interface",
"desktop"
] |
84,263 | 1 | null | null | 2 | 614 | I'm designing a web site navigation hierarchy. It's a tree of nodes.
Most nodes are pages. Some nodes are links (think shortcuts in Windows).
Most pages hold HTML content. Some execute code.
I'd like to represent these as this collection of classes and abstract (MustInherit) classes…

P.S. Do not hotlink the cartoon without the site's permission please.
| What's your favorite "programmer" cartoon? | CC BY-SA 4.0 | 0 | 2008-09-17T15:34:11.467 | 2022-07-16T15:40:26.347 | 2019-05-31T02:15:50.763 | 707,111 | 4,230 | [
"language-agnostic"
] |
86,181 | 1 | 86,294 | null | 3 | 3,363 | I'm designing this collection of classes and abstract (MustInherit) classes…

This is the database table where I'm going to store all this…
. I have to admit, I don't fully understand how that CSS works, but it great.
Inside the topmost box is a text-type inp... | YUI Autocomplete renders under other page elements in IE7 | CC BY-SA 2.5 | 0 | 2008-09-18T00:20:49.847 | 2009-08-28T04:13:34.657 | 2017-02-08T14:08:02.797 | -1 | 8,995 | [
"css",
"internet-explorer-7",
"yui",
"z-index"
] |
94,007 | 1 | 95,656 | null | 13 | 3,987 |
## Question
I'm wondering how different ExtendScript is from JavaScript? Could I theoretically hire a web developer who has JavaScript savvy to develop it without demanding an excessive amount of learning on their part?
## Overview
I'm working on a media database (or a so-called "multimedia library") project a... | Adobe ExtendScript development - How different than regular JavaScript? | CC BY-SA 2.5 | 0 | 2008-09-18T16:10:55.083 | 2009-06-17T04:17:22.110 | 2017-02-08T14:08:04.213 | -1 | 17,794 | [
"javascript",
"adobe",
"extendscript"
] |
94,556 | 1 | 1,783,572 | null | 3 | 6,332 | We've got a multiproject we're trying to run Cobertura test coverage reports on as part of our mvn site build. I can get Cobertura to run on the child projects, but it erroneously reports 0% coverage, even though the reports still highlight the lines of code that were hit by the unit tests.
We are using mvn 2.0.8. I ... | Maven2 Multiproject Cobertura Reporting Problems During mvn site Build | CC BY-SA 4.0 | 0 | 2008-09-18T17:13:55.213 | 2019-01-02T18:47:03.977 | 2019-01-02T18:47:03.977 | 4,751,173 | 765 | [
"maven-2",
"code-coverage",
"maven-plugin",
"cobertura"
] |
104,850 | 1 | 287,877 | null | 187 | 79,140 | I want to try to convert a string to a Guid, but I don't want to rely on catching exceptions (
- - -
In other words the code:
```
public static Boolean TryStrToGuid(String s, out Guid value)
{
try
{
value = new Guid(s);
return true;
}
catch (FormatException)
{
value = Gui... | Test if string is a guid without throwing exceptions? | CC BY-SA 3.0 | 0 | 2008-09-19T19:35:34.123 | 2021-12-13T10:49:51.883 | 2017-05-30T14:27:13.457 | 542,251 | 12,597 | [
"c#",
"string",
"parsing",
"guid"
] |
106,920 | 1 | null | null | 8 | 765 | Here's the last few frames of a typical Ruby on Rails traceback:

And here are the last few frames of a typical Nevow traceback in Python:

It's not just the web environment either, you can make similar comparison... | How can I get source and variable values in ruby tracebacks? | CC BY-SA 4.0 | 0 | 2008-09-20T03:15:54.610 | 2019-01-04T08:40:20.680 | 2019-01-04T08:40:20.680 | 4,751,173 | 9,585 | [
"ruby",
"debugging",
"exception",
"traceback"
] |
107,054 | 1 | 107,149 | null | 1 | 1,690 | I'm trying to implement an outdent of the first letter of the first paragraph of the body text. Where I'm stuck is in getting consistent spacing between the first letter and the rest of the paragraph.
For example, there is a huge difference in spacing between a "W" and an "I"

(very popular if you see download count on download.com ,,, did he ask for permission ??)
I am making a 2d game based on dexter's lab theme. I've got the sprite of dexter from GSA. basically I'm not an artist, so I have to depend on already available sprites,... | Is using Dexter's character sprite okay, or do I have to | CC BY-SA 4.0 | null | 2008-09-21T04:50:18.603 | 2019-01-05T19:55:50.110 | 2019-01-05T19:55:50.110 | 4,751,173 | 8,786 | [
"graphics",
"2d",
"media"
] |
113,640 | 1 | 113,667 | null | 54 | 72,738 | I want to create a box like this with title:

Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
| Which CSS tag creates a box like this with title? | CC BY-SA 3.0 | 0 | 2008-09-22T07:35:51.753 | 2020-08-07T09:28:44.420 | 2014-10-17T01:50:40.737 | 964,243 | 20,165 | [
"html",
"css",
"fieldset",
"legend"
] |
115,459 | 1 | 939,784 | null | 38 | 78,355 | I'm looking for an online tool that will let me create a gif or png like this one:

Some kind of LaTex online service, with friendly examples?
| Online tool for generating mathematical equation image files | CC BY-SA 2.5 | 0 | 2008-09-22T15:20:20.047 | 2017-02-14T17:42:18.570 | 2017-02-08T14:08:12.947 | -1 | 19,269 | [
"math",
"image"
] |
117,920 | 1 | 325,632 | null | 0 | 461 | I have a website where people can upload documents, and view them later at their convenience. I store the binary info along with the mime type in my db, and later just stream the binary content straight to the browser.
This works for for every file type except Office 2007 files. When I try to view the Office 2007 file... | How do I open Office 2007 files stored on a website? | CC BY-SA 2.5 | null | 2008-09-22T22:03:05.630 | 2008-11-28T12:18:19.190 | 2017-02-08T14:08:13.283 | -1 | 781 | [
"asp.net",
"security",
"office-2007"
] |
121,810 | 1 | 582,063 | null | 6 | 4,715 |
I am forever right-clicking to reply to an email, only to accidentally click `Print` and have Outlook send it directly to the printer quicker than I can stop it.

I am using Outlook 2007.
| Remove Right Click Print Context Menu from Outlook 2007 | CC BY-SA 3.0 | 0 | 2008-09-23T15:38:41.867 | 2020-06-23T08:09:17.130 | 2020-06-23T08:09:17.130 | 100,297 | 383 | [
"vba",
"outlook",
"outlook-2007"
] |
122,741 | 1 | 122,983 | null | 8 | 1,280 | OK, I have been working on a random image selector and queue system (so you don't see the same images too often).
All was going swimmingly (as far as my crappy code does) I got to the random bit. I wanted to test it, but how do you test for it? There is no `Debug.Assert(i.IsRandom)` (sadly) :D
So, I got my brain on it... | Testing for Random Value - Thoughts on this Approach? | CC BY-SA 2.5 | 0 | 2008-09-23T18:16:23.390 | 2010-12-19T18:13:50.600 | 2020-06-20T09:12:55.060 | -1 | 832 | [
"unit-testing",
"testing",
"random",
"automated-tests"
] |
127,899 | 1 | null | null | 0 | 1,473 | i have a control that is organized like this

and i want to have the javascript registered on the calling master pages, etc, so that anywhere this control folder is dropped and then registered, it will know how to find the URL to the js.
Here i... | Best way to register js for modularity in User Control | CC BY-SA 2.5 | 0 | 2008-09-24T15:31:38.457 | 2019-09-16T03:15:55.623 | 2019-09-16T03:15:55.623 | 3,744,182 | 1,748,529 | [
"jquery",
".net",
"user-controls",
"relative-path",
"resolveurl"
] |
128,305 | 1 | null | null | 6 | 4,554 | How to tag images in the image itself in a web page?
I know [Taggify](http://www.taggify.net/), but... is there other options?
[Orkut](http://en.blog.orkut.com/2008/06/tag-thats-me.html) also does it to tag people faces... How is it done?
Anyone knows any public framework that is able to do it?
See a sample bellow... | Tag images in the image itself? HOW-TO | CC BY-SA 4.0 | 0 | 2008-09-24T16:47:42.067 | 2019-01-08T19:52:45.233 | 2019-01-08T19:52:45.233 | 4,751,173 | 1,100 | [
"javascript",
"image",
"tags"
] |
129,920 | 1 | 355,791 | null | 16 | 4,526 | I have developed a couple of extensions for Firefox, and am annoyed that it is so hard to get the extension signed. When an extension isn't signed, it says "Author not verified" when it is installed, and to me that just looks wrong.
I have a simple build script that builds my .xpi file from sources, and I have a lice... | How do you sign your Firefox extensions? | CC BY-SA 4.0 | 0 | 2008-09-24T20:56:05.930 | 2019-01-10T08:06:06.840 | 2019-01-10T08:06:06.840 | 4,751,173 | 13,394 | [
"firefox",
"build-automation",
"certificate",
"code-signing"
] |
135,573 | 1 | null | null | 4 | 4,682 | I have a project containing at least one DLL along with the executable output. I have added a Deployment Project to this solution, which asked me for a name and working directory upon creation like all projects.
I named this "MyProduc_Installer" and have been able to modify all aspects of the installation process exc... | How to change settings for a Visual Studio 2005 Deployment Project | CC BY-SA 2.5 | 0 | 2008-09-25T19:49:44.710 | 2011-03-29T05:41:00.437 | 2017-02-08T14:08:16.707 | -1 | 414,107 | [
"deployment",
"visual-studio-2005"
] |
136,129 | 1 | 136,265 | null | 11 | 22,961 | I am trying to set the disabled font characteristics for a Label Control. I can set all of the Font characteristics (size, bold, etc), but the color is overridden by the default windows behavior which seems to be one of these two colors:
- -
The image below demonstrates the behavior -- Column 1 is Labels, Column 2 ... | Windows Forms: How do you change the font color for a disabled label | CC BY-SA 4.0 | 0 | 2008-09-25T21:05:01.597 | 2019-01-11T18:58:18.060 | 2019-01-11T18:58:18.060 | 4,751,173 | 19,242 | [
"winforms"
] |
136,604 | 1 | 137,162 | null | 1 | 1,219 | Sorry if the title is poorly descriptive, but I can't do better right now =(
So, I have this master-detail scheme, with the detail being a tree structure (one to many self relation) with n levels (on SQLServer 2005)
I need to copy a detail structure from one master to the another using a stored procedure, by passing ... | Duplicate Data over One-to-Many self relation (Tsql) | CC BY-SA 4.0 | null | 2008-09-25T22:30:36.507 | 2019-01-11T18:58:31.887 | 2019-01-11T18:58:31.887 | 4,751,173 | 6,359 | [
"sql-server",
"tsql"
] |
136,807 | 1 | 139,112 | null | 0 | 258 | I'm having a weird cross-browser flash problem. Please see the screenshot below. I have seen this behaviour before, but I cannot recall what the cause was. Can someone please tell me why this happens, and possible actions I can take to fix it?

| What can cause mutated Flash display like this? | CC BY-SA 4.0 | null | 2008-09-25T23:17:32.447 | 2019-01-13T10:24:03.913 | 2019-01-13T10:24:03.913 | 4,751,173 | 2,192 | [
"flash",
"internet-explorer",
"firefox",
"video",
"cross-browser"
] |
138,056 | 1 | 138,357 | null | 11 | 677 | In other words, a block of code like this:
```
(setq initial-major-mode
(lambda ()
(text-mode)
(font-lock-mode)
))
```
... would come out looking like something like this:

If something like this already exists, what is it? And if it doesn't exist, how ... | When editing Lisp code, can emacs be configured to display each nested level of parentheses in a different color? | CC BY-SA 4.0 | 0 | 2008-09-26T06:41:49.073 | 2019-01-13T10:24:22.557 | 2019-01-13T10:24:22.557 | 4,751,173 | 7,598 | [
"emacs",
"lisp"
] |
141,779 | 1 | 143,288 | null | 45 | 11,599 | The problem/comic in question: [http://xkcd.com/287/](http://xkcd.com/287/)

I'm not sure this is the best way to do it, but here's what I've come up with so far. I'm using CFML, but it should be readable by anyone.
```
<cffunction n... | Solving the NP-complete problem in XKCD | CC BY-SA 2.5 | 0 | 2008-09-26T20:30:38.680 | 2012-07-08T03:10:30.383 | 2017-02-08T14:08:18.060 | -1 | 751 | [
"language-agnostic",
"np-complete"
] |
144,880 | 1 | null | null | 0 | 603 | Curious what is recognized as a solid algorithm/approach for judging the strength of a directed acyclic graph - particularly the strength of certain nodes. The main question I have about this can be boiled down to the following two graphs:
.

Is there a tomahawk ... | Tomahawk and scrolling tabs | CC BY-SA 2.5 | null | 2008-09-29T08:44:39.273 | 2009-09-20T21:00:02.293 | 2017-02-08T14:08:19.790 | -1 | 1,870 | [
"java",
"jsf",
"tomahawk"
] |
148,097 | 1 | 148,131 | null | 3 | 2,264 | In IIS 6, I can use the Web Service Extensions folder in Inetmgr to allow/prohibit isapi filters, such as ASP.net. I want to be able to do this programmatically (in particular, from an installer script/exe).

Any ideas?
| enabling/disabling asp.net web service extension via script | CC BY-SA 2.5 | null | 2008-09-29T09:31:34.637 | 2012-12-14T14:58:01.783 | 2017-02-08T14:08:20.123 | -1 | 11,208 | [
"asp.net",
"iis"
] |
149,337 | 1 | null | null | 4 | 1,333 | Is it possible to create a .NET equivalent to the following code?
```
<?php
if (!isset($_SERVER['PHP_AUTH_USER'])) {
header('WWW-Authenticate: Basic realm="My Realm"');
header('HTTP/1.0 401 Unauthorized');
echo 'Text to send if user hits Cancel button';
exit;
} else {
echo "<p>Hello {$_SERVER['PHP_... | HTTP Authentication in .NET | CC BY-SA 4.0 | null | 2008-09-29T15:54:52.220 | 2019-01-16T07:53:58.790 | 2019-01-16T07:53:58.790 | 4,751,173 | 795 | [
".net",
"http",
"authentication"
] |
150,031 | 1 | 150,065 | null | 3 | 6,056 | Does anyone have a good technique (or tutorial) to implement rulers within a C# Windows Forms application? I want to display an image while showing rulers that indicate your mouse position to allow a more accurate positioning of the cursor. Just like the image below:

| Jagged Button edges in Internet Explorer | CC BY-SA 4.0 | 0 | 2008-09-29T20:38:29.527 | 2019-01-19T09:51:23.183 | 2019-01-19T09:51:23.183 | 4,751,173 | 208 | [
"javascript",
"css",
"internet-explorer"
] |
154,535 | 1 | 163,699 | null | 0 | 507 | I have used Photoshop CS2's "Save for Web" feature to create a table of images for my site layout.
This HTML appears fine in a web browser, however when imported into Visual Studio and viewed in the site designer, the metrics are wrong and there are horizontal gaps between images (table cells).
The output from Photos... | How do I ensure Visual Studio 2005 displays the tables and images correctly? | CC BY-SA 2.5 | null | 2008-09-30T19:21:17.970 | 2008-10-02T19:11:14.763 | 2017-02-08T14:08:21.800 | -1 | 414,107 | [
"asp.net",
"html",
"visual-studio",
"designer",
"photoshop"
] |
155,920 | 1 | 159,948 | null | 58 | 113,047 | I have one of those "I swear I didn't touch the server" situations. I honestly didn't touch any of the php scripts. The problem I am having is that php data is not being saved across different pages or page refreshes. I know a new session is being created correctly because I can set a session variable (e.g. $_SESSION['... | PHP Session data not being saved | CC BY-SA 3.0 | 0 | 2008-10-01T01:57:49.127 | 2018-01-16T04:09:40.887 | 2015-07-27T08:28:13.710 | 411,022 | 13,556 | [
"php",
"session"
] |
159,262 | 1 | 161,041 | null | 2 | 1,618 | i have a flow panel that i'm adding extra items to it at runtime based on whether they have chosen to show all the items. that's all works fine; the expansion is controlled by a toolbar button.
the trouble is we'd like the user to be able to move his mouse over the "+" sign to expand the section.

The rows are sorted by CLNDR_DATE DESC.
I need to find a CLNDR_DATE that corresponds to the highlighted row, in other words:
Find the topmost group of rows WHERE EFFECTIVE_DATE IS NOT NULL,
and return the CLNR_DATE of a last row of... | Do this with a single SQL | CC BY-SA 3.0 | null | 2008-10-02T06:29:39.167 | 2015-06-19T20:20:53.960 | 2015-06-19T20:20:53.960 | 1,159,643 | 10,557 | [
"sql",
"oracle"
] |
163,604 | 1 | 163,843 | null | 4 | 3,637 | I'm trying to select a random 10% sampling from a small table. I thought I'd just use the RAND() function and select those rows where the random number is less than 0.10:
```
SELECT * FROM SomeTable
WHERE SomeColumn='SomeCondition' AND
RAND() < 0.10
```
But I soon discovered that RAND() always returns the sam... | What am I doing wrong when using RAND() in MS SQL Server 2005? | CC BY-SA 3.0 | null | 2008-10-02T17:41:09.660 | 2017-09-11T00:42:41.233 | 2017-05-23T11:45:25.620 | -1 | 5,987 | [
"sql",
"sql-server",
"random"
] |
167,808 | 1 | 167,841 | null | 3 | 1,394 | I have created a user control to handle adding comments to certain business entities, like contacts and customers. Works great ... except for one issue.
I am using a ListView control to edit and delete comments, and a separate area, on the same user control to add a new comment. All of this is wrapped in an UpdatePa... | AJAX, postbacks and browser refreshes | CC BY-SA 2.5 | 0 | 2008-10-03T16:43:20.300 | 2009-06-23T07:04:24.880 | 2017-02-08T14:08:25.167 | -1 | 1,768 | [
"asp.net",
"ajax"
] |
168,173 | 1 | 168,182 | null | 8 | 3,939 | I have a webpage that pulls information from a database, converts it to .csv format, and writes the file to the HTTPResponse.
```
string csv = GetCSV();
Response.Clear();
Response.ContentType = "text/csv";
Response.Write(csv);
```
This works fine, and the file is sent to the client with no problems. However, when... | Change name of file sent to client? | CC BY-SA 2.5 | 0 | 2008-10-03T18:17:32.777 | 2011-05-21T19:17:41.617 | 2017-02-08T14:08:25.500 | -1 | 21,461 | [
"c#",
"asp.net",
"http"
] |
169,272 | 1 | null | null | 5 | 933 | Today the blinkenlights [stereoscope](http://blinkenlights.net/stereoscope) project starts as part of the [nuit blanche](http://www.scotiabanknuitblanche.ca/) art event in Toronto. The Toronto city hall is transferred into a giant matrix display. There are [tools](http://blinkenlights.net/stereoscope/create) to create ... | What coding projects are used to create art and beauty? | CC BY-SA 2.5 | 0 | 2008-10-03T23:15:46.810 | 2020-05-30T14:58:36.990 | 2017-02-08T14:08:26.173 | -1 | 720 | [
"matrix"
] |
171,840 | 1 | 171,847 | null | 5 | 2,769 | I'm running into an issue where I have a FileUpload control in an UpdatePanel. When I attempt to save changes and upload the file, no file is found. If I remove the UpdatePanel everything seems to work fine.
Any ideas why this might be happening? And is there a work-around?
. I'm looking
forward to any solutions. Thank you!
... | Problems with shutting down JBoss in Eclipse if I change JNDI port | CC BY-SA 4.0 | 0 | 2008-10-06T07:38:31.833 | 2019-01-22T08:23:25.050 | 2019-01-22T08:23:25.050 | 4,751,173 | 19,621 | [
"java",
"eclipse",
"jboss",
"jboss-tools"
] |
175,036 | 1 | null | null | 4 | 33,498 | i need to be able to produce a "pretty" printout of an individual list item's values, with the goals being:
- -
i'm avoiding using InfoPath at this time due to other issues (which i'll post separate questions for...)
, i have an individual list item that normally displays similar to the following `DispForm.aspx` :
... | How do I customize the print layout of a SharePoint list item? | CC BY-SA 2.5 | 0 | 2008-10-06T16:26:00.113 | 2011-08-16T20:36:08.557 | 2017-02-08T14:08:27.863 | -1 | 12,293 | [
"css",
"sharepoint",
"printing",
"moss",
"sharepoint-designer"
] |
175,835 | 1 | 175,900 | null | 0 | 204 | I'm trying add a tab to my web page that looks like this: 
Using [this example](http://mattberseth.com/blog/2007/09/using_css_image_sprites_with_t.html) as a basis, I've gotten it partially working. My case differs because I want the text section to be a fixed with, but... | Dynamically sizing tab made of images | CC BY-SA 4.0 | null | 2008-10-06T19:35:58.483 | 2019-01-22T08:23:30.870 | 2019-01-22T08:23:30.870 | 4,751,173 | 12,601 | [
"css",
"firefox",
"internet-explorer-6",
"css-sprites"
] |
176,572 | 1 | 176,648 | null | 52 | 43,814 | I have a UI widget that needs to be put in an IFRAME both for performance reasons and so we can syndicate it out to affiliate sites easily. The UI for the widget includes tool-tips that display over the top of other page content. See screenshot below or [go to the site](http://www.bookabach.co.nz/) to see it in action.... | Is there a way to have content from an IFRAME overflow onto the parent frame? | CC BY-SA 4.0 | 0 | 2008-10-06T23:07:54.437 | 2021-02-03T15:04:20.017 | 2019-01-23T20:28:42.000 | 4,751,173 | 11,577 | [
"javascript",
"css",
"iframe",
"tooltip"
] |
177,271 | 1 | 177,278 | null | 38 | 58,039 | Can anyone provide some pseudo code for a roulette selection function? How would I implement this:

I don't really understand how to read this math notation. I never took any probability or statistics.
| Roulette Selection in Genetic Algorithms | CC BY-SA 2.5 | 0 | 2008-10-07T04:56:18.493 | 2020-05-22T12:43:45.307 | 2017-02-08T14:08:31.753 | -1 | 577 | [
"genetic-algorithm",
"evolutionary-algorithm",
"roulette-wheel-selection"
] |
178,578 | 1 | 178,595 | null | 9 | 46,496 | I'm using Webbrowser control to login to HTTPS site with "untrusted certificate".
but I get popup such standart window "Security Alert" about untrusted certificate:

I have to find this window by title and send it + to press :
```
int iHandle = NativeWin32... | How to disable "Security Alert" window in Webbrowser control | CC BY-SA 3.0 | 0 | 2008-10-07T13:58:33.110 | 2016-02-12T12:45:36.750 | 2011-12-26T13:40:28.840 | 95 | 25,826 | [
"c#",
"https",
"browser",
"certificate"
] |
178,696 | 1 | 178,727 | null | 4 | 6,045 | I've got the following JavaScript on my web page...
```
64 var description = new Array();
65 description[0] = "..."
66 description[1] = "..."
...
78 function init() {
79 document.getElementById('somedivid').innerHTML = description[0];
80 }
81
82 window.onload = init();
```
In Microsoft Inter... | Why am I getting this Javascript runtime error? | CC BY-SA 3.0 | 0 | 2008-10-07T14:27:34.050 | 2015-06-19T19:59:37.650 | 2015-06-19T19:59:37.650 | 1,159,643 | 83 | [
"javascript",
"html",
"internet-explorer"
] |
183,101 | 1 | 184,315 | null | 2 | 6,061 | I use the MFC list control in report view with grid lines to display data in a vaguely spreadsheet manner.
Sometimes when the user scrolls vertically through the control, extra grid lines are drawn, which looks terrible.
This does not happen when the slider or the mousewheel are used to scroll, only when the little d... | MFC List Control scrolling shows extra grid lines | CC BY-SA 4.0 | null | 2008-10-08T14:40:13.820 | 2019-01-25T07:57:16.010 | 2019-01-25T07:57:16.010 | 4,751,173 | 16,582 | [
"mfc"
] |
183,407 | 1 | 183,425 | null | 0 | 1,593 | Code and preview: 
```
<html>
<head>
<title>Testing some CSS</title>
<style type="text/css">
.dDay {
font-size:205%
}
.dMon {
font-weight:bold;
font-variant:small-caps;
font-size:130%;
margin-top:-.7em;
}
.detailContainer {
vertical-align:middl... | How can I get a section of this div to sit next to each other? | CC BY-SA 4.0 | null | 2008-10-08T15:33:24.120 | 2019-01-25T07:57:12.827 | 2019-01-25T07:57:12.827 | 4,751,173 | 25,515 | [
"css"
] |
186,935 | 1 | 187,010 | null | 2 | 1,274 | I'm writing server-side programs in PHP for an iPhone app. And I have no iPhone. :P
The iPhone app requests XML files from the site whenever a user runs the iPhone app. You may visit [http://www.appvee.com/iphone/ads](http://www.appvee.com/iphone/ads) or [http://www.appvee.com/iphone/latest](http://www.appvee.com/ipho... | iPhone "Web Site Error" | CC BY-SA 2.5 | null | 2008-10-09T12:00:41.553 | 2009-05-11T09:32:38.783 | 2017-02-08T14:08:35.240 | -1 | 23,773 | [
"iphone",
"encoding",
"utf-8"
] |
187,908 | 1 | null | null | 1 | 6,342 | I would like to create a many to many relationship of a table (RoutePlace) with itself using JPA anotations. The singularity of the table I want to join with itself is that it has a compound-key.
example: [https://h4losw2.files.wordpress.com/2008/10/tables.png](https://h4losw2.files.wordpress.com/2008/10/tables.png)
... | JPA - many to many relationship of a table with a compound-key with itself | CC BY-SA 2.5 | null | 2008-10-09T15:50:30.713 | 2011-08-21T16:47:25.580 | 2017-02-08T14:08:35.580 | -1 | null | [
"jpa",
"many-to-many",
"entity-relationship",
"compound-key"
] |
188,373 | 1 | 790,445 | null | 3 | 7,669 | I'd like to re-brand (and send error emails) for all of the SSRS default error pages (picture below) when you access reports via /ReportServer/. I'm already handling the ASP OnError event and of the default SSRS errors appear to catch their own exceptions and then render this page cancel the response all before the O... | Custom error pages in Reporting Services 2008 | CC BY-SA 2.5 | 0 | 2008-10-09T17:43:49.737 | 2011-07-20T16:25:45.320 | 2017-02-08T14:08:35.920 | -1 | 15,050 | [
"reporting-services",
"error-handling"
] |
190,493 | 1 | 194,646 | null | 14 | 16,305 | I am trying to figure out how to add a custom control to the iPhone MoviePlayer.
For an example of what I am trying to do see the following image.

I am trying to add something like the controls on the right and left of the basic movie controls.
I had done this in the ... | Add Custom Controls to MoviePlayer | CC BY-SA 4.0 | 0 | 2008-10-10T08:14:09.980 | 2019-01-31T07:43:11.650 | 2019-01-31T07:43:11.650 | 4,751,173 | 26,728 | [
"iphone",
"objective-c",
"cocoa-touch"
] |
190,625 | 1 | 190,665 | null | 1 | 15,559 | I have created the following stored procedure..
```
CREATE PROCEDURE [dbo].[UDSPRBHPRIMBUSTYPESTARTUP]
(
@CODE CHAR(5)
, @DESC VARCHAR(255) OUTPUT
)
AS
DECLARE @SERVERNAME nvarchar(30)
DECLARE @DBASE nvarchar(30)
DECLARE @SQL nvarchar(2000)
SET @SERVERNAME =
Convert(nvarchar,
(SELECT spData FROM dbSpecificDa... | Initialise A Variable With The Output Of A Stored Procedure In MS SQL Server | CC BY-SA 3.0 | null | 2008-10-10T09:20:11.267 | 2013-09-12T13:49:11.803 | 2017-02-08T14:08:36.600 | -1 | 978 | [
"sql-server",
"sql-server-2005",
"tsql",
"stored-procedures"
] |
190,867 | 1 | 191,398 | null | 1 | 1,460 | Is it possible to have multiple view of the same display object? (e.g. same-computer multi-player game using split screen)
The sample code that failed to work follows:
```
var content: Sprite = new Sprite();
var v1: Sprite = new Sprite();
var v2: Sprite = new Sprite();
with(content.graphics) {
li... | Multiple viewports of the same DisplayObject | CC BY-SA 4.0 | 0 | 2008-10-10T11:12:39.107 | 2019-01-31T07:43:17.797 | 2019-01-31T07:43:17.797 | 4,751,173 | 11,238 | [
"flash",
"actionscript-3",
"viewport",
"displayobject",
"scrollrect"
] |
191,812 | 1 | 193,144 | null | 9 | 2,887 | How can I create a custom property for my .Net assembly which would then be visible under the Details tab in Windows explorer?
Something to sit parallel with "File Description", "Type", "Product Version"... etc
Update: To quote my comment to Lars ... "Whilst I would have liked to do this from within Visual studio, th... | How can I create a custom Property for my assembly? | CC BY-SA 4.0 | 0 | 2008-10-10T15:16:30.130 | 2019-02-01T21:31:07.773 | 2019-02-01T21:31:07.773 | 4,751,173 | 11,356 | [
".net",
"assemblies",
"attributes"
] |
192,938 | 1 | 192,955 | null | 1 | 2,790 | When in Outlook 2003, open the Address Book, select Tools->Options. You get the address dialog showing the option "When sending mail, check names using these address lists in the following order:"

For most people, this will contain only "Contacts". For corporat... | How to programmatically update the Outlook contact name resolution order | CC BY-SA 3.0 | 0 | 2008-10-10T20:35:07.867 | 2022-04-28T00:29:23.857 | 2013-07-19T14:36:37.900 | null | 3,347 | [
"outlook",
"registry",
"exchange-server"
] |
195,270 | 1 | 196,523 | null | 87 | 134,782 | Are there any Combobox controls (dropdown list with autosuggestion) based on the jQuery library?
It should be able to handle and have some options. A would be great too. I'm working with ASP.NET, but it's a not a problem if I had to write a wrapper for it.

| Professional jQuery based Combobox control? | CC BY-SA 3.0 | 0 | 2008-10-12T09:18:53.423 | 2015-08-28T15:02:48.153 | 2015-08-28T15:02:48.153 | 3,204,551 | 6,461 | [
"javascript",
"jquery",
"combobox",
"controls"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.